home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-19 / netpltc2.txt < prev    next >
Text File  |  1993-05-10  |  7KB  |  130 lines

  1. Autodesk Product Support                April 19, 1993
  2.  
  3.    AutoCAD(R) Release 12c2 for DOS 386 -- Spooling to Network Devices
  4.  
  5.    The capabilities in AutoCAD Release 12c2 for DOS 386 have been improved to better support plotting in network environments.  AutoCAD can now plot directly to network captured or re-directed ports, and automatically spool plots to multiple network plotters or printers.  These and other enhancements are documented in the README.DOC file in the AutoCAD directory.
  6.  
  7.    Two examples of using these plotting enhancements are shown below. In the first, AutoCAD is configured to plot directly to printers and plotters via Novell captured ports.  In the second, AutoCAD's Autospooling feature is used to send plots automatically to network print queues.
  8.  
  9. Plotting to Network Captured Ports
  10. 1) Determine which network-captured or re-directed ports connect to which network queues.  On a Novell network, use the CAPTURE command with the /SHOW option to obtain information about captured ports:
  11.  
  12. C:> CAPTURE /SHOW
  13.    LPT1:  Capturing data to server 2MPSPRINT queue HP_LASERJET_PLUS.
  14.     
  15.    User will not be notified after the files are printed.
  16.    Capture Defaults: Enabled    Automatic Endcap: Enabled
  17.    Banner:    (None)    Form Feed:    No
  18.    Copies:    1    Tabs:        No Conversion
  19.    Form:    0    Timeout Count:    Disabled
  20.  
  21.    LPT2:  Capturing data to server 2MPSPRINT queue DESIGNJET_600.
  22.  
  23.    User will not be notified after the files are printed.
  24.    Capture Defaults: Enabled    Automatic Endcap: Enabled 
  25.    Banner:    (None)    Form Feed:    No
  26.    Copies:    1    Tabs:        No conversion
  27.    Form:    0    Timeout Count:    Disabled
  28.  
  29. 2) Create a plotter configuration for each output device available on the network.  
  30.  
  31.    For example, to plot to the Hewlett-Packard LaserJet III shown in Novell's CAPTURE command above, issue the following steps:
  32.    a.  Start AutoCAD.
  33.    b.  Use the CONFIGURE command to add a plotter configuration.
  34.    c.  Select the driver, "Hewlett-Packard (PCL) Laser Autodesk".
  35.    d.  Select the supported model, "HP LaserJet III".
  36.    e.  Select the printer connection type, "Parallel".
  37.    f.   Select the correct paper tray, resolution, and number of copies.
  38.    g.  Specify whether or not to delete downloaded fonts and macros.
  39.  * h.  Select the appropriate communication port, "LPT1:".
  40.    i.   Enter a description for the plotter, "techps_pcl".
  41.    j.   Exit the plotter configuration menu and configuration menus.
  42.  
  43. * Note: AutoCAD displays both the available port names, e.g., LPT1:, and hexadecimal port addresses, e.g., 3BC.  Selecting a port name causes AutoCAD to send directly to that network device.  To plot to a local device specify the hexadecimal port address.
  44.  
  45. 3) Issue the PLOT command, and select the printer under the "Device and Default Selection..." option.
  46.  
  47. Plotting with AutoCAD's AUTOSPOOL Feature
  48. 1) Add the environment variable ACADPLCMD to your system startup files or the batch file which starts AutoCAD.
  49.  
  50.    SET ACADPLCMD=C:\SPFILES\PLOT.BAT %%s %%c
  51.  
  52.    The percent characters %s and %c pass the plotfile name and plotter description, respectively, to the batch program.  
  53.  
  54. Note: When specifying percent signs in a batch file, use two percent signs.  The MS-DOS batch file processor automatically suppresses the first one.  
  55.  
  56. 2) Using the Configure Operating Parameters menu under the Configure menu, specify "AUTOSPOOL" as the default plot file name.
  57.  
  58. 3) Using the Configure Operating Parameters menu under the Configure menu, specify a plot spooler directory such as C:\SPFILES to receive the plot files.  
  59.  
  60. Note: AutoCAD will not automatically create the plot spooler directory. 
  61.  
  62. 4) Use AutoCAD's CONFIG command to create plotter configurations for each printer or plotter available on the network.  
  63.  
  64. 5) Specify that each plotter configuration will plot to a file.
  65.  
  66. 6) Give each plotter configuration a plotter description which matches the network queue name:  
  67.  
  68.    0. Exit to plotter configuration menu
  69.    1. Hewlett-Packard (PCL) LaserJet ADI 4.2 - by Autodesk, Inc.
  70.          Description: HP_LaserJet_III
  71.    2. PostScript device ADI 4.2 - by Autodesk, Inc.
  72.           Description: TI_Omnilaser
  73.    3. Hewlett-Packard (HP-GL/2) ADI 4.2 - by Autodesk, Inc.
  74.           Description: DesignJet_600
  75.    4. PostScript device ADI 4.2 - by Autodesk, Inc.
  76.         Description: Phaser_III
  77.    5. Hewlett-Packard (HP-GL/2) ADI 4.2 - by Autodesk, Inc.
  78.         Description: HP_Laser_IIIsi_HPGL2
  79.    6. PostScript device ADI 4.2 - by Autodesk, Inc. 
  80.          Description: HP_Laser_IIIsi_PostScript
  81.    7. Hewlett-Packard (PCL) LaserJet ADI 4.2 - by Autodesk, Inc.
  82.         Description: HP_Laser_IIIsi_PCL
  83.  
  84. Note: If non-alphanumeric characters are placed in the plotter description, AutoCAD will automatically replace them with underscores when passing them to the plot spooler.   
  85.  
  86. 7) Create a batch file in the plot spooler directory that will send the plots to their respective printers and plotters:
  87.  
  88.    @echo off
  89.    if "%2"=="HP_Laser_IIIsi_HPGL2"       goto SPECIAL
  90.    if "%2"=="HP_Laser_IIIsi_PostScript"       goto SPECIAL
  91.    if "%2"=="HP_Laser_IIIsi_PCL"       goto SPECIAL
  92.     
  93.    nprint %1 /server=2mpsprint /queue=%2 /nt /nff /nb>nul
  94.    goto END
  95.  
  96.    :SPECIAL
  97.    nprint %1 /server=2mpsprint /queue=Laser_IIIsi /nt /nff /nb>nul
  98.    goto END    
  99.  
  100.    :END
  101.    del %1 >nul
  102.  
  103. Note: In this example, the Hewlett-Packard LaserJet IIIsi can receive PostScript, HP-GL/2, and PCL files.
  104.  
  105. Note: Novell networks can use a feature called Jobnames to make plot spooling easier.  If Jobnames are available, specify the AutoCAD plotter configuration description (step number 6 above), to have the same name as the Novell Jobname.  Pass both the plot name and the Jobname in the plot spooling batch file:
  106.  
  107.    @echo off
  108.    if "%2"=="HP_Laser_IIIsi_HPGL2"       goto SPECIAL
  109.    if "%2"=="HP_Laser_IIIsi_PostScript"       goto SPECIAL
  110.    if "%2"=="HP_Laser_IIIsi_PCL"       goto SPECIAL
  111.     
  112.    nprint %1 jobname=%2 >nul
  113.    goto END
  114.     
  115.    :SPECIAL
  116.    nprint %1 jobname=techps >nul
  117.    goto END
  118.         
  119.    :END
  120.    del %1 >nul
  121.  
  122. 8) To plot to a network printer, use the PLOT dialogue and select the appropriate printer configuration under the "Device and Default Selection..." option.
  123.  
  124.                          Autodesk Trademarks
  125. AutoCAD is registered in the U.S. Patent and Trademark Office by Autodesk, Inc.  ACAD is a trademark of Autodesk, Inc.
  126.  
  127.                         Third-Party Trademarks
  128. All other brand and product names are trademarks or registered trademarks of their respective holders.
  129.  
  130. PSR 010  Rev. 1.0  April 19, 1993